From: Ralf Jung Date: Tue, 7 Apr 2020 08:08:39 +0000 (+0200) Subject: mention named opaque types X-Git-Url: https://git.ralfj.de/web.git/commitdiff_plain/7e329bd0ad68b5e622083f1ead03d72bedc367af?hp=f17c390626fea20a1492441a9fe7ab24ab59a4ed;ds=sidebyside mention named opaque types --- diff --git a/ralf/_posts/2020-04-04-layout-debugging.md b/ralf/_posts/2020-04-04-layout-debugging.md index 181b11b..7b8caa6 100644 --- a/ralf/_posts/2020-04-04-layout-debugging.md +++ b/ralf/_posts/2020-04-04-layout-debugging.md @@ -29,7 +29,7 @@ The (permanently) unstable `rustc_layout` attribute [can now be used](https://gi In this case, it prints: ``` -error: layout debugging: Layout { +error: layout_of((u8, u16)) = Layout { fields: Arbitrary { offsets: [ Size { @@ -83,6 +83,8 @@ the fields are at offsets 0 and 2, the type has alignment 2 (but preferred align We can also see that it uses the `ScalarPair` abi which is relevant for Miri and when passing data as arguments to another function. To learn more about what all this information means, see [the `Layout` type docs](https://doc.rust-lang.org/nightly/nightly-rustc/rustc_target/abi/struct.Layout.html). +**Update:** After a suggestions by @jschievink, this can now also be used to print the [underlying type and layout](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=4aab680db88d1e3922bfb7e26103a125) of named opaque types, which is particularly useful [for generators](https://play.rust-lang.org/?version=nightly&mode=debug&edition=2018&gist=de99ab78a4d77bceee6760021b19de7d). **/Update** + So the next time you work with `Layout` and wonder how exactly the niche gets represented, or whether an `enum` can have `ScalarPair` abi (hint: yes it can), you can easily look at a few examples to see how rustc thinks about this type internally. This is basically the type-level equivalent of `--emit mir`. I have wanted this since forever, so much that some time ago I wrote an awful hack for this based on rustc debug tracing.