]> git.lizzy.rs Git - rust.git/commitdiff
add comments and tests
authorAriel Ben-Yehuda <ariel.byd@gmail.com>
Sat, 16 Apr 2016 12:16:36 +0000 (15:16 +0300)
committerAriel Ben-Yehuda <ariel.byd@gmail.com>
Tue, 3 May 2016 15:30:10 +0000 (18:30 +0300)
src/librustc/ty/mod.rs
src/test/compile-fail/issue-17431-2.rs
src/test/compile-fail/issue-26548.rs
src/test/compile-fail/range-1.rs
src/test/compile-fail/sized-cycle-note.rs
src/test/run-pass/issue-31299.rs [new file with mode: 0644]

index b3ca120bd9f136b090b66bb78ce91f3fc2ec9f62..d2b7354abb9b8a5f2e22ce1eacb106a5c8139c67 100644 (file)
@@ -1721,6 +1721,17 @@ pub fn dtor_kind(&self) -> DtorKind {
 
     /// Returns a simpler type such that `Self: Sized` if and only
     /// if that type is Sized, or `TyErr` if this type is recursive.
+    ///
+    /// This is generally the `struct_tail` if this is a struct, or a
+    /// tuple of them if this is an enum.
+    ///
+    /// Oddly enough, checking that the sized-constraint is Sized is
+    /// actually more expressive than checking all members:
+    /// the Sized trait is inductive, so an associated type that references
+    /// Self would prevent its containing ADT from being Sized.
+    ///
+    /// Due to normalization being eager, this applies even if
+    /// the associated type is behind a pointer, e.g. issue #31299.
     pub fn sized_constraint(&self, tcx: &ty::TyCtxt<'tcx>) -> Ty<'tcx> {
         let dep_node = DepNode::SizedConstraint(self.did);
         match self.sized_constraint.get(dep_node) {
@@ -1749,6 +1760,7 @@ fn sized_constraint_for_tys<TYS>(
             .collect();
 
         match tys.len() {
+            _ if tys.references_error() => tcx.types.err,
             0 => tcx.types.bool,
             1 => tys[0],
             _ => tcx.mk_tup(tys)
@@ -1768,7 +1780,7 @@ fn sized_constraint_for_ty(
                 tcx.types.bool
             }
 
-            TyStr | TyTrait(..) | TySlice(_) => {
+            TyStr | TyTrait(..) | TySlice(_) | TyError => {
                 // these are never sized - return the target type
                 ty
             }
@@ -1797,6 +1809,10 @@ fn sized_constraint_for_ty(
             }
 
             TyParam(..) => {
+                // perf hack: if there is a `T: Sized` bound, then
+                // we know that `T` is Sized and do not need to check
+                // it on the impl.
+
                 let sized_trait = match tcx.lang_items.sized_trait() {
                     Some(x) => x,
                     _ => return ty
@@ -1815,7 +1831,7 @@ fn sized_constraint_for_ty(
                 }
             }
 
-            TyInfer(..) | TyError => {
+            TyInfer(..) => {
                 bug!("unexpected type `{:?}` in sized_constraint_for_ty",
                      ty)
             }
@@ -1824,9 +1840,21 @@ fn sized_constraint_for_ty(
         result
     }
 
-    /// Calculates the Sized-constraint. This replaces all always-Sized
-    /// types with bool. I could have made the TyIVar an Option, but that
-    /// would have been so much code.
+    /// Calculates the Sized-constraint.
+    ///
+    /// As the Sized-constraint of enums can be a *set* of types,
+    /// the Sized-constraint may need to be a set also. Because introducing
+    /// a new type of IVar is currently a complex affair, the Sized-constraint
+    /// may be a tuple.
+    ///
+    /// In fact, there are only a few options for the constraint:
+    ///     - `bool`, if the type is always Sized
+    ///     - an obviously-unsized type
+    ///     - a type parameter or projection whose Sizedness can't be known
+    ///     - a tuple of type parameters or projections, if there are multiple
+    ///       such.
+    ///     - a TyError, if a type contained itself. The representability
+    ///       check should catch this case.
     fn calculate_sized_constraint_inner(&'tcx self, tcx: &ty::TyCtxt<'tcx>,
                                         stack: &mut Vec<AdtDefMaster<'tcx>>)
     {
index edbc8c82432e0331b38cdae55603dfbddeff877b..f39fb0e31c6ee570089ac16b8dc1674e7f2f7e60 100644 (file)
@@ -9,6 +9,7 @@
 // except according to those terms.
 
 struct Baz { q: Option<Foo> }
+//~^ ERROR recursive type `Baz` has infinite size
 
 struct Foo { q: Option<Baz> }
 //~^ ERROR recursive type `Foo` has infinite size
index 28080ae09e51bb87d82a608986c753e81a78fd24..2919b0b3caca6b2ae82de94b8ab7092afd4619b5 100644 (file)
@@ -8,10 +8,11 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
+// error-pattern: overflow representing the type `S`
+
 trait Mirror { type It: ?Sized; }
 impl<T: ?Sized> Mirror for T { type It = Self; }
 struct S(Option<<S as Mirror>::It>);
-//~^ ERROR recursive type `S` has infinite size
 
 fn main() {
     let _s = S(None);
index 895d2450cfed6c570c5ca2f72ee7594fe4caa64b..2a0773af73bbfef375ec0aa7aaf296d7de7412b5 100644 (file)
@@ -23,5 +23,4 @@ pub fn main() {
     let arr: &[_] = &[1, 2, 3];
     let range = *arr..;
     //~^ ERROR `[_]: std::marker::Sized` is not satisfied
-    //~| ERROR `[_]: std::marker::Sized` is not satisfied
 }
index 3d7c4868e96fe3bff3e62da72e0752ecc45c519a..712b4ac22f068f890bcc9f2f2d9a7cf06d7ec64e 100644 (file)
 // 2. it should elaborate the steps that led to the cycle.
 
 struct Baz { q: Option<Foo> }
-
+//~^ ERROR recursive type `Baz` has infinite size
 struct Foo { q: Option<Baz> }
 //~^ ERROR recursive type `Foo` has infinite size
-//~| NOTE type `Foo` is embedded within `std::option::Option<Foo>`...
-//~| NOTE ...which in turn is embedded within `std::option::Option<Foo>`...
-//~| NOTE ...which in turn is embedded within `Baz`...
-//~| NOTE ...which in turn is embedded within `std::option::Option<Baz>`...
-//~| NOTE ...which in turn is embedded within `Foo`, completing the cycle.
 
 impl Foo { fn bar(&self) {} }
 
diff --git a/src/test/run-pass/issue-31299.rs b/src/test/run-pass/issue-31299.rs
new file mode 100644 (file)
index 0000000..e49e13c
--- /dev/null
@@ -0,0 +1,36 @@
+// Copyright 2012 The Rust Project Developers. See the COPYRIGHT
+// file at the top-level directory of this distribution and at
+// http://rust-lang.org/COPYRIGHT.
+//
+// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
+// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
+// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
+// option. This file may not be copied, modified, or distributed
+// except according to those terms.
+
+// Regression test for #31299. This was generating an overflow error
+// because of eager normalization:
+//
+// proving `M: Sized` requires
+// - proving `PtrBack<Vec<M>>: Sized` requis
+//   - normalizing `Vec<<Vec<M> as Front>::Back>>: Sized` requires
+//     - proving `Vec<M>: Front` requires
+//       - `M: Sized` <-- cycle!
+//
+// If we skip the normalization step, though, everything goes fine.
+
+trait Front {
+    type Back;
+}
+
+impl<T> Front for Vec<T> {
+    type Back = Vec<T>;
+}
+
+struct PtrBack<T: Front>(Vec<T::Back>);
+
+struct M(PtrBack<Vec<M>>);
+
+fn main() {
+    std::mem::size_of::<M>();
+}