Skip to content

Commit e8e9f6a

Browse files
Uplift movability and mutability, the simple way
1 parent c104861 commit e8e9f6a

File tree

7 files changed

+79
-88
lines changed

7 files changed

+79
-88
lines changed

Cargo.lock

+1
Original file line numberDiff line numberDiff line change
@@ -3419,6 +3419,7 @@ dependencies = [
34193419
"rustc_macros",
34203420
"rustc_serialize",
34213421
"rustc_span",
3422+
"rustc_type_ir",
34223423
"smallvec",
34233424
"thin-vec",
34243425
"tracing",

compiler/rustc_ast/Cargo.toml

+2
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,8 @@ rustc_lexer = { path = "../rustc_lexer" }
1414
rustc_macros = { path = "../rustc_macros" }
1515
rustc_serialize = { path = "../rustc_serialize" }
1616
rustc_span = { path = "../rustc_span" }
17+
# depends on Mutability and Movability, which could be uplifted into a common crate.
18+
rustc_type_ir = { path = "../rustc_type_ir" }
1719
smallvec = { version = "1.8.1", features = ["union", "may_dangle"] }
1820
thin-vec = "0.2.12"
1921
tracing = "0.1"

compiler/rustc_ast/src/ast.rs

+1-62
Original file line numberDiff line numberDiff line change
@@ -34,6 +34,7 @@ use rustc_serialize::{Decodable, Decoder, Encodable, Encoder};
3434
use rustc_span::source_map::{respan, Spanned};
3535
use rustc_span::symbol::{kw, sym, Ident, Symbol};
3636
use rustc_span::{ErrorGuaranteed, Span, DUMMY_SP};
37+
pub use rustc_type_ir::{Movability, Mutability};
3738
use std::fmt;
3839
use std::mem;
3940
use thin_vec::{thin_vec, ThinVec};
@@ -800,57 +801,6 @@ pub enum PatKind {
800801
MacCall(P<MacCall>),
801802
}
802803

803-
#[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug, Copy)]
804-
#[derive(HashStable_Generic, Encodable, Decodable)]
805-
pub enum Mutability {
806-
// N.B. Order is deliberate, so that Not < Mut
807-
Not,
808-
Mut,
809-
}
810-
811-
impl Mutability {
812-
pub fn invert(self) -> Self {
813-
match self {
814-
Mutability::Mut => Mutability::Not,
815-
Mutability::Not => Mutability::Mut,
816-
}
817-
}
818-
819-
/// Returns `""` (empty string) or `"mut "` depending on the mutability.
820-
pub fn prefix_str(self) -> &'static str {
821-
match self {
822-
Mutability::Mut => "mut ",
823-
Mutability::Not => "",
824-
}
825-
}
826-
827-
/// Returns `"&"` or `"&mut "` depending on the mutability.
828-
pub fn ref_prefix_str(self) -> &'static str {
829-
match self {
830-
Mutability::Not => "&",
831-
Mutability::Mut => "&mut ",
832-
}
833-
}
834-
835-
/// Returns `""` (empty string) or `"mutably "` depending on the mutability.
836-
pub fn mutably_str(self) -> &'static str {
837-
match self {
838-
Mutability::Not => "",
839-
Mutability::Mut => "mutably ",
840-
}
841-
}
842-
843-
/// Return `true` if self is mutable
844-
pub fn is_mut(self) -> bool {
845-
matches!(self, Self::Mut)
846-
}
847-
848-
/// Return `true` if self is **not** mutable
849-
pub fn is_not(self) -> bool {
850-
matches!(self, Self::Not)
851-
}
852-
}
853-
854804
/// The kind of borrow in an `AddrOf` expression,
855805
/// e.g., `&place` or `&raw const place`.
856806
#[derive(Clone, Copy, PartialEq, Eq, Debug)]
@@ -1579,17 +1529,6 @@ pub enum CaptureBy {
15791529
Ref,
15801530
}
15811531

1582-
/// The movability of a generator / closure literal:
1583-
/// whether a generator contains self-references, causing it to be `!Unpin`.
1584-
#[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Encodable, Decodable, Debug, Copy)]
1585-
#[derive(HashStable_Generic)]
1586-
pub enum Movability {
1587-
/// May contain self-references, `!Unpin`.
1588-
Static,
1589-
/// Must not contain self-references, `Unpin`.
1590-
Movable,
1591-
}
1592-
15931532
/// Closure lifetime binder, `for<'a, 'b>` in `for<'a, 'b> |_: &'a (), _: &'b ()|`.
15941533
#[derive(Clone, Encodable, Decodable, Debug)]
15951534
pub enum ClosureBinder {

compiler/rustc_ast/src/lib.rs

+3-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,9 @@ use rustc_data_structures::stable_hasher::{HashStable, StableHasher};
6060
/// Requirements for a `StableHashingContext` to be used in this crate.
6161
/// This is a hack to allow using the `HashStable_Generic` derive macro
6262
/// instead of implementing everything in `rustc_middle`.
63-
pub trait HashStableContext: rustc_span::HashStableContext {
63+
pub trait HashStableContext:
64+
rustc_type_ir::HashStableContext + rustc_span::HashStableContext
65+
{
6466
fn hash_attr(&mut self, _: &ast::Attribute, hasher: &mut StableHasher);
6567
}
6668

compiler/rustc_middle/src/ty/context.rs

+1-7
Original file line numberDiff line numberDiff line change
@@ -88,8 +88,6 @@ impl<'tcx> Interner for TyCtxt<'tcx> {
8888
type Predicate = Predicate<'tcx>;
8989
type PredicateKind = ty::PredicateKind<'tcx>;
9090
type TypeAndMut = TypeAndMut<'tcx>;
91-
type Mutability = hir::Mutability;
92-
type Movability = hir::Movability;
9391
type Ty = Ty<'tcx>;
9492
type Tys = &'tcx List<Ty<'tcx>>;
9593
type AliasTy = ty::AliasTy<'tcx>;
@@ -118,13 +116,9 @@ impl<'tcx> Interner for TyCtxt<'tcx> {
118116

119117
fn ty_and_mut_to_parts(
120118
TypeAndMut { ty, mutbl }: TypeAndMut<'tcx>,
121-
) -> (Self::Ty, Self::Mutability) {
119+
) -> (Self::Ty, ty::Mutability) {
122120
(ty, mutbl)
123121
}
124-
125-
fn mutability_is_mut(mutbl: Self::Mutability) -> bool {
126-
mutbl.is_mut()
127-
}
128122
}
129123

130124
type InternedSet<'tcx, T> = ShardedHashMap<InternedInSet<'tcx, T>, ()>;

compiler/rustc_type_ir/src/lib.rs

+1-4
Original file line numberDiff line numberDiff line change
@@ -59,8 +59,6 @@ pub trait Interner: Sized {
5959
type PredicateKind: Clone + Debug + Hash + PartialEq + Eq;
6060

6161
type TypeAndMut: Clone + Debug + Hash + Ord;
62-
type Mutability: Clone + Debug + Hash + Ord;
63-
type Movability: Clone + Debug + Hash + Ord;
6462

6563
// Kinds of tys
6664
type Ty: Clone + DebugWithInfcx<Self> + Hash + Ord;
@@ -95,8 +93,7 @@ pub trait Interner: Sized {
9593
type InferRegion: Clone + DebugWithInfcx<Self> + Hash + Ord;
9694
type PlaceholderRegion: Clone + Debug + Hash + Ord;
9795

98-
fn ty_and_mut_to_parts(ty_and_mut: Self::TypeAndMut) -> (Self::Ty, Self::Mutability);
99-
fn mutability_is_mut(mutbl: Self::Mutability) -> bool;
96+
fn ty_and_mut_to_parts(ty_and_mut: Self::TypeAndMut) -> (Self::Ty, Mutability);
10097
}
10198

10299
/// Imagine you have a function `F: FnOnce(&[T]) -> R`, plus an iterator `iter`

compiler/rustc_type_ir/src/sty.rs

+70-14
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,68 @@ use self::TyKind::*;
1818
use rustc_data_structures::stable_hasher::HashStable;
1919
use rustc_serialize::{Decodable, Decoder, Encodable};
2020

21+
/// The movability of a generator / closure literal:
22+
/// whether a generator contains self-references, causing it to be `!Unpin`.
23+
#[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Encodable, Decodable, Debug, Copy)]
24+
#[derive(HashStable_Generic)]
25+
pub enum Movability {
26+
/// May contain self-references, `!Unpin`.
27+
Static,
28+
/// Must not contain self-references, `Unpin`.
29+
Movable,
30+
}
31+
32+
#[derive(Clone, PartialEq, Eq, PartialOrd, Ord, Hash, Debug, Copy)]
33+
#[derive(HashStable_Generic, Encodable, Decodable)]
34+
pub enum Mutability {
35+
// N.B. Order is deliberate, so that Not < Mut
36+
Not,
37+
Mut,
38+
}
39+
40+
impl Mutability {
41+
pub fn invert(self) -> Self {
42+
match self {
43+
Mutability::Mut => Mutability::Not,
44+
Mutability::Not => Mutability::Mut,
45+
}
46+
}
47+
48+
/// Returns `""` (empty string) or `"mut "` depending on the mutability.
49+
pub fn prefix_str(self) -> &'static str {
50+
match self {
51+
Mutability::Mut => "mut ",
52+
Mutability::Not => "",
53+
}
54+
}
55+
56+
/// Returns `"&"` or `"&mut "` depending on the mutability.
57+
pub fn ref_prefix_str(self) -> &'static str {
58+
match self {
59+
Mutability::Not => "&",
60+
Mutability::Mut => "&mut ",
61+
}
62+
}
63+
64+
/// Returns `""` (empty string) or `"mutably "` depending on the mutability.
65+
pub fn mutably_str(self) -> &'static str {
66+
match self {
67+
Mutability::Not => "",
68+
Mutability::Mut => "mutably ",
69+
}
70+
}
71+
72+
/// Return `true` if self is mutable
73+
pub fn is_mut(self) -> bool {
74+
matches!(self, Self::Mut)
75+
}
76+
77+
/// Return `true` if self is **not** mutable
78+
pub fn is_not(self) -> bool {
79+
matches!(self, Self::Not)
80+
}
81+
}
82+
2183
/// Specifies how a trait object is represented.
2284
#[derive(Clone, Copy, PartialEq, Eq, PartialOrd, Ord, Hash, Debug)]
2385
#[derive(Encodable, Decodable, HashStable_Generic)]
@@ -98,7 +160,7 @@ pub enum TyKind<I: Interner> {
98160

99161
/// A reference; a pointer with an associated lifetime. Written as
100162
/// `&'a mut T` or `&'a T`.
101-
Ref(I::Region, I::Ty, I::Mutability),
163+
Ref(I::Region, I::Ty, Mutability),
102164

103165
/// The anonymous type of a function declaration/definition. Each
104166
/// function has a unique type.
@@ -141,7 +203,7 @@ pub enum TyKind<I: Interner> {
141203
///
142204
/// For more info about generator args, visit the documentation for
143205
/// `GeneratorArgs`.
144-
Generator(I::DefId, I::GenericArgs, I::Movability),
206+
Generator(I::DefId, I::GenericArgs, Movability),
145207

146208
/// A type representing the types stored inside a generator.
147209
/// This should only appear as part of the `GeneratorArgs`.
@@ -506,15 +568,15 @@ impl<I: Interner> DebugWithInfcx<I> for TyKind<I> {
506568
Slice(t) => write!(f, "[{:?}]", &this.wrap(t)),
507569
RawPtr(p) => {
508570
let (ty, mutbl) = I::ty_and_mut_to_parts(p.clone());
509-
match I::mutability_is_mut(mutbl) {
510-
true => write!(f, "*mut "),
511-
false => write!(f, "*const "),
571+
match mutbl {
572+
Mutability::Mut => write!(f, "*mut "),
573+
Mutability::Not => write!(f, "*const "),
512574
}?;
513575
write!(f, "{:?}", &this.wrap(ty))
514576
}
515-
Ref(r, t, m) => match I::mutability_is_mut(m.clone()) {
516-
true => write!(f, "&{:?} mut {:?}", &this.wrap(r), &this.wrap(t)),
517-
false => write!(f, "&{:?} {:?}", &this.wrap(r), &this.wrap(t)),
577+
Ref(r, t, m) => match m {
578+
Mutability::Mut => write!(f, "&{:?} mut {:?}", &this.wrap(r), &this.wrap(t)),
579+
Mutability::Not => write!(f, "&{:?} {:?}", &this.wrap(r), &this.wrap(t)),
518580
},
519581
FnDef(d, s) => f.debug_tuple_field2_finish("FnDef", d, &this.wrap(s)),
520582
FnPtr(s) => write!(f, "{:?}", &this.wrap(s)),
@@ -573,8 +635,6 @@ where
573635
I::Const: Encodable<E>,
574636
I::Region: Encodable<E>,
575637
I::TypeAndMut: Encodable<E>,
576-
I::Mutability: Encodable<E>,
577-
I::Movability: Encodable<E>,
578638
I::PolyFnSig: Encodable<E>,
579639
I::BoundExistentialPredicates: Encodable<E>,
580640
I::Tys: Encodable<E>,
@@ -687,8 +747,6 @@ where
687747
I::Const: Decodable<D>,
688748
I::Region: Decodable<D>,
689749
I::TypeAndMut: Decodable<D>,
690-
I::Mutability: Decodable<D>,
691-
I::Movability: Decodable<D>,
692750
I::PolyFnSig: Decodable<D>,
693751
I::BoundExistentialPredicates: Decodable<D>,
694752
I::Tys: Decodable<D>,
@@ -753,8 +811,6 @@ where
753811
I::PolyFnSig: HashStable<CTX>,
754812
I::BoundExistentialPredicates: HashStable<CTX>,
755813
I::Region: HashStable<CTX>,
756-
I::Movability: HashStable<CTX>,
757-
I::Mutability: HashStable<CTX>,
758814
I::Tys: HashStable<CTX>,
759815
I::AliasTy: HashStable<CTX>,
760816
I::BoundTy: HashStable<CTX>,

0 commit comments

Comments
 (0)