-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Avoid ICEing miri on layout query cycles
- Loading branch information
Showing
6 changed files
with
119 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,53 +1,58 @@ | ||
<h2 id="layout" class="small-section-header"> {# #} | ||
<h2 id="layout" class="small-section-header"> {# #} | ||
Layout<a href="#layout" class="anchor">§</a> {# #} | ||
</h2> {# #} | ||
<div class="docblock"> {# #} | ||
{% match type_layout_size %} | ||
{% when Ok(type_layout_size) %} | ||
<div class="warning"> {# #} | ||
<p> {# #} | ||
<strong>Note:</strong> Most layout information is <strong>completely {#+ #} | ||
unstable</strong> and may even differ between compilations. {#+ #} | ||
The only exception is types with certain <code>repr(...)</code> {#+ #} | ||
attributes. Please see the Rust Reference’s {#+ #} | ||
<a href="https://doc.rust-lang.org/reference/type-layout.html">“Type Layout”</a> {#+ #} | ||
chapter for details on type layout guarantees. {# #} | ||
</p> {# #} | ||
</div> {# #} | ||
<p><strong>Size:</strong> {{ type_layout_size|safe }}</p> {# #} | ||
{% if !variants.is_empty() %} | ||
<p> {# #} | ||
<strong>Size for each variant:</strong> {# #} | ||
</p> {# #} | ||
<ul> {# #} | ||
{% for (name, layout_size) in variants %} | ||
<li> {# #} | ||
<code>{{ name }}</code>: {#+ #} | ||
{{ layout_size|safe }} | ||
</li> {# #} | ||
{% endfor %} | ||
</ul> {# #} | ||
{% endif %} | ||
{# This kind of layout error can occur with valid code, e.g. if you try to | ||
get the layout of a generic type such as `Vec<T>`. #} | ||
{% when Ok(type_layout_size) %} | ||
<div class="warning"> {# #} | ||
<p> {# #} | ||
<strong>Note:</strong> Most layout information is <strong>completely {#+ #} | ||
unstable</strong> and may even differ between compilations. {#+ #} | ||
The only exception is types with certain <code>repr(...)</code> {#+ #} | ||
attributes. Please see the Rust Reference’s {#+ #} | ||
<a href="https://doc.rust-lang.org/reference/type-layout.html">“Type Layout”</a> {#+ #} | ||
chapter for details on type layout guarantees. {# #} | ||
</p> {# #} | ||
</div> {# #} | ||
<p><strong>Size:</strong> {{ type_layout_size|safe }}</p> {# #} | ||
{% if !variants.is_empty() %} | ||
<p> {# #} | ||
<strong>Size for each variant:</strong> {# #} | ||
</p> {# #} | ||
<ul> {# #} | ||
{% for (name, layout_size) in variants %} | ||
<li> {# #} | ||
<code>{{ name }}</code>: {#+ #} | ||
{{ layout_size|safe }} | ||
</li> {# #} | ||
{% endfor %} | ||
</ul> {# #} | ||
{% endif %} | ||
{# This kind of layout error can occur with valid code, e.g. if you try to | ||
get the layout of a generic type such as `Vec<T>`. #} | ||
{% when Err(LayoutError::Unknown(_)) %} | ||
<p> {# #} | ||
<strong>Note:</strong> Unable to compute type layout, {#+ #} | ||
possibly due to this type having generic parameters. {#+ #} | ||
Layout can only be computed for concrete, fully-instantiated types. {# #} | ||
</p> {# #} | ||
<p> {# #} | ||
<strong>Note:</strong> Unable to compute type layout, {#+ #} | ||
possibly due to this type having generic parameters. {#+ #} | ||
Layout can only be computed for concrete, fully-instantiated types. {# #} | ||
</p> {# #} | ||
{# This kind of error probably can't happen with valid code, but we don't | ||
want to panic and prevent the docs from building, so we just let the | ||
user know that we couldn't compute the layout. #} | ||
want to panic and prevent the docs from building, so we just let the | ||
user know that we couldn't compute the layout. #} | ||
{% when Err(LayoutError::SizeOverflow(_)) %} | ||
<p> {# #} | ||
<strong>Note:</strong> Encountered an error during type layout; {#+ #} | ||
the type was too big. {# #} | ||
</p> {# #} | ||
<p> {# #} | ||
<strong>Note:</strong> Encountered an error during type layout; {#+ #} | ||
the type was too big. {# #} | ||
</p> {# #} | ||
{% when Err(LayoutError::NormalizationFailure(_, _)) %} | ||
<p> {# #} | ||
<strong>Note:</strong> Encountered an error during type layout; {#+ #} | ||
the type failed to be normalized. {# #} | ||
</p> {# #} | ||
{% endmatch %} | ||
<p> {# #} | ||
<strong>Note:</strong> Encountered an error during type layout; {#+ #} | ||
the type failed to be normalized. {# #} | ||
</p> {# #} | ||
{% when Err(LayoutError::Cycle) %} | ||
<p> {# #} | ||
<strong>Note:</strong> Encountered an error during type layout; {#+ #} | ||
the type's layout depended on the type's layout itself. {# #} | ||
</p> {# #} | ||
{% endmatch %} | ||
</div> {# #} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
//@error-pattern: a cycle occurred during layout computation | ||
//~^ ERROR: cycle detected when computing layout of | ||
|
||
use std::mem; | ||
|
||
pub struct S<T: Tr> { | ||
pub f: <T as Tr>::I, | ||
} | ||
|
||
pub trait Tr { | ||
type I: Tr; | ||
} | ||
|
||
impl<T: Tr> Tr for S<T> { | ||
type I = S<S<T>>; | ||
} | ||
|
||
impl Tr for () { | ||
type I = (); | ||
} | ||
|
||
fn foo<T: Tr>() -> usize { | ||
mem::size_of::<S<T>>() | ||
} | ||
|
||
fn main() { | ||
println!("{}", foo::<S<()>>()); | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
error[E0391]: cycle detected when computing layout of `S<S<()>>` | ||
| | ||
= note: ...which requires computing layout of `<S<()> as Tr>::I`... | ||
= note: ...which again requires computing layout of `S<S<()>>`, completing the cycle | ||
|
||
error: post-monomorphization error: a cycle occurred during layout computation | ||
--> RUSTLIB/core/src/mem/mod.rs:LL:CC | ||
| | ||
LL | intrinsics::size_of::<T>() | ||
| ^^^^^^^^^^^^^^^^^^^^^^^^^^ a cycle occurred during layout computation | ||
| | ||
= note: inside `std::mem::size_of::<S<S<()>>>` at RUSTLIB/core/src/mem/mod.rs:LL:CC | ||
note: inside `foo::<S<()>>` | ||
--> $DIR/layout_cycle.rs:LL:CC | ||
| | ||
LL | mem::size_of::<S<T>>() | ||
| ^^^^^^^^^^^^^^^^^^^^^^ | ||
note: inside `main` | ||
--> $DIR/layout_cycle.rs:LL:CC | ||
| | ||
LL | println!("{}", foo::<S<()>>()); | ||
| ^^^^^^^^^^^^^^ | ||
|
||
note: some details are omitted, run with `MIRIFLAGS=-Zmiri-backtrace=full` for a verbose backtrace | ||
|
||
error: aborting due to 2 previous errors | ||
|
||
For more information about this error, try `rustc --explain E0391`. |