]> git.lizzy.rs Git - rust.git/commitdiff
Compute the layout of uninhabited structs
authorOliver Scherer <github35764891676564198441@oli-obk.de>
Wed, 2 Oct 2019 08:39:35 +0000 (10:39 +0200)
committerOliver Scherer <github35764891676564198441@oli-obk.de>
Wed, 2 Oct 2019 08:59:50 +0000 (10:59 +0200)
src/librustc/mir/interpret/error.rs
src/librustc/ty/layout.rs
src/librustc_mir/interpret/place.rs
src/test/ui/issues/issue-64506.rs [new file with mode: 0644]

index 71967b513a049455ec509bf8a730a6e45b63cf40..ac99ccd45eafe4e8b0c578a5d1c63d174e0bc3cf 100644 (file)
@@ -389,10 +389,6 @@ pub enum UnsupportedOpInfo<'tcx> {
     /// Free-form case. Only for errors that are never caught!
     Unsupported(String),
 
-    /// FIXME(#64506) Error used to work around accessing projections of
-    /// uninhabited types.
-    UninhabitedValue,
-
     // -- Everything below is not categorized yet --
     FunctionAbiMismatch(Abi, Abi),
     FunctionArgMismatch(Ty<'tcx>, Ty<'tcx>),
@@ -556,8 +552,6 @@ fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
                     not a power of two"),
             Unsupported(ref msg) =>
                 write!(f, "{}", msg),
-            UninhabitedValue =>
-                write!(f, "tried to use an uninhabited value"),
         }
     }
 }
index 6b22ded49f3fc1ba3cad06a9dd473794c27edc97..2751ce57e3e816bbbccfda85b35a0ca9af4e3fc3 100644 (file)
@@ -825,10 +825,18 @@ fn layout_raw_uncached(&self, ty: Ty<'tcx>) -> Result<&'tcx LayoutDetails, Layou
                     });
                     (present_variants.next(), present_variants.next())
                 };
-                if present_first.is_none() {
-                    // Uninhabited because it has no variants, or only absent ones.
-                    return tcx.layout_raw(param_env.and(tcx.types.never));
-                }
+                let present_first = if present_first.is_none() {
+                    if def.is_enum() {
+                        // Uninhabited because it has no variants, or only absent ones.
+                        return tcx.layout_raw(param_env.and(tcx.types.never));
+                    } else {
+                        // if it's a struct, still compute a layout so that we can still compute the
+                        // field offsets
+                        Some(VariantIdx::new(0))
+                    }
+                } else {
+                    present_first
+                };
 
                 let is_struct = !def.is_enum() ||
                     // Only one variant is present.
index 1166ca9bf24443b30c8a550aad2f0708b8ca7021..f57c180191d282f1f7674c4c2efbf8272ba5f0ec 100644 (file)
@@ -9,7 +9,7 @@
 use rustc::mir::interpret::truncate;
 use rustc::ty::{self, Ty};
 use rustc::ty::layout::{
-    self, Size, Abi, Align, LayoutOf, TyLayout, HasDataLayout, VariantIdx, PrimitiveExt
+    self, Size, Align, LayoutOf, TyLayout, HasDataLayout, VariantIdx, PrimitiveExt
 };
 use rustc::ty::TypeFoldable;
 
@@ -377,20 +377,17 @@ pub fn mplace_field(
             layout::FieldPlacement::Array { stride, .. } => {
                 let len = base.len(self)?;
                 if field >= len {
-                    // This can be violated because this runs during promotion on code where the
-                    // type system has not yet ensured that such things don't happen.
+                    // This can be violated because the index (field) can be a runtime value
+                    // provided by the user.
                     debug!("tried to access element {} of array/slice with length {}", field, len);
                     throw_panic!(BoundsCheck { len, index: field });
                 }
                 stride * field
             }
             layout::FieldPlacement::Union(count) => {
-                // FIXME(#64506) `UninhabitedValue` can be removed when this issue is resolved
-                if base.layout.abi == Abi::Uninhabited {
-                    throw_unsup!(UninhabitedValue);
-                }
                 assert!(field < count as u64,
-                        "Tried to access field {} of union with {} fields", field, count);
+                        "Tried to access field {} of union {:#?} with {} fields",
+                        field, base.layout, count);
                 // Offset is always 0
                 Size::from_bytes(0)
             }
diff --git a/src/test/ui/issues/issue-64506.rs b/src/test/ui/issues/issue-64506.rs
new file mode 100644 (file)
index 0000000..db3e85a
--- /dev/null
@@ -0,0 +1,20 @@
+// check-pass
+
+#[derive(Copy, Clone)]
+pub struct ChildStdin {
+    inner: AnonPipe,
+}
+
+#[derive(Copy, Clone)]
+enum AnonPipe {}
+
+const FOO: () = {
+    union Foo {
+        a: ChildStdin,
+        b: (),
+    }
+    let x = unsafe { Foo { b: () }.a };
+    let x = &x.inner;
+};
+
+fn main() {}