Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit ac385a5

Browse files
committedMay 14, 2024
Auto merge of #125120 - compiler-errors:rollup-mnjybwv, r=compiler-errors
Rollup of 7 pull requests Successful merges: - #119838 (style-guide: When breaking binops handle multi-line first operand better) - #124844 (Use a proper probe for shadowing impl) - #125047 (Migrate `run-make/issue-14500` to new `rmake.rs` format) - #125080 (only find segs chain for missing methods when no available candidates) - #125088 (Uplift `AliasTy` and `AliasTerm`) - #125100 (Don't do post-method-probe error reporting steps if we're in a suggestion) - #125118 (Use new utility functions/methods in run-make tests) r? `@ghost` `@rustbot` modify labels: rollup
2 parents bdfd941 + 31016d5 commit ac385a5

File tree

42 files changed

+1042
-599
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

42 files changed

+1042
-599
lines changed
 

‎compiler/rustc_middle/src/ty/consts.rs

+11-3
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,7 @@ use rustc_hir as hir;
77
use rustc_hir::def::{DefKind, Res};
88
use rustc_hir::def_id::LocalDefId;
99
use rustc_macros::{HashStable, TyDecodable, TyEncodable};
10-
use rustc_type_ir::ConstKind as IrConstKind;
11-
use rustc_type_ir::{TypeFlags, WithCachedTypeInfo};
10+
use rustc_type_ir::{self as ir, TypeFlags, WithCachedTypeInfo};
1211

1312
mod int;
1413
mod kind;
@@ -20,7 +19,8 @@ use rustc_span::Span;
2019
use rustc_span::DUMMY_SP;
2120
pub use valtree::*;
2221

23-
pub type ConstKind<'tcx> = IrConstKind<TyCtxt<'tcx>>;
22+
pub type ConstKind<'tcx> = ir::ConstKind<TyCtxt<'tcx>>;
23+
pub type UnevaluatedConst<'tcx> = ir::UnevaluatedConst<TyCtxt<'tcx>>;
2424

2525
#[cfg(target_pointer_width = "64")]
2626
rustc_data_structures::static_assert_size!(ConstKind<'_>, 32);
@@ -184,6 +184,14 @@ impl<'tcx> rustc_type_ir::inherent::Const<TyCtxt<'tcx>> for Const<'tcx> {
184184
Const::new_bound(tcx, debruijn, var, ty)
185185
}
186186

187+
fn new_unevaluated(
188+
interner: TyCtxt<'tcx>,
189+
uv: ty::UnevaluatedConst<'tcx>,
190+
ty: Ty<'tcx>,
191+
) -> Self {
192+
Const::new_unevaluated(interner, uv, ty)
193+
}
194+
187195
fn ty(self) -> Ty<'tcx> {
188196
self.ty()
189197
}

‎compiler/rustc_middle/src/ty/consts/kind.rs

+4-26
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,15 @@
11
use super::Const;
22
use crate::mir;
33
use crate::ty::abstract_const::CastKind;
4-
use crate::ty::GenericArgsRef;
54
use crate::ty::{self, visit::TypeVisitableExt as _, List, Ty, TyCtxt};
6-
use rustc_hir::def_id::DefId;
7-
use rustc_macros::{HashStable, TyDecodable, TyEncodable, TypeFoldable, TypeVisitable};
5+
use rustc_macros::{extension, HashStable, TyDecodable, TyEncodable, TypeFoldable, TypeVisitable};
86

9-
/// An unevaluated (potentially generic) constant used in the type-system.
10-
#[derive(Copy, Clone, Eq, PartialEq, TyEncodable, TyDecodable)]
11-
#[derive(Hash, HashStable, TypeFoldable, TypeVisitable)]
12-
pub struct UnevaluatedConst<'tcx> {
13-
pub def: DefId,
14-
pub args: GenericArgsRef<'tcx>,
15-
}
16-
17-
impl rustc_errors::IntoDiagArg for UnevaluatedConst<'_> {
18-
fn into_diag_arg(self) -> rustc_errors::DiagArgValue {
19-
format!("{self:?}").into_diag_arg()
20-
}
21-
}
22-
23-
impl<'tcx> UnevaluatedConst<'tcx> {
7+
#[extension(pub(crate) trait UnevaluatedConstEvalExt<'tcx>)]
8+
impl<'tcx> ty::UnevaluatedConst<'tcx> {
249
/// FIXME(RalfJung): I cannot explain what this does or why it makes sense, but not doing this
2510
/// hurts performance.
2611
#[inline]
27-
pub(crate) fn prepare_for_eval(
12+
fn prepare_for_eval(
2813
self,
2914
tcx: TyCtxt<'tcx>,
3015
param_env: ty::ParamEnv<'tcx>,
@@ -55,13 +40,6 @@ impl<'tcx> UnevaluatedConst<'tcx> {
5540
}
5641
}
5742

58-
impl<'tcx> UnevaluatedConst<'tcx> {
59-
#[inline]
60-
pub fn new(def: DefId, args: GenericArgsRef<'tcx>) -> UnevaluatedConst<'tcx> {
61-
UnevaluatedConst { def, args }
62-
}
63-
}
64-
6543
#[derive(Copy, Clone, Eq, PartialEq, Hash)]
6644
#[derive(HashStable, TyEncodable, TyDecodable, TypeVisitable, TypeFoldable)]
6745
pub enum Expr<'tcx> {
There was a problem loading the remainder of the diff.

0 commit comments

Comments
 (0)
Failed to load comments.