Thanks for your patient clarification Joe.<br><br>My understanding was that type punning == your example with T* -&gt; Void* -&gt; T* -&gt; T. Assuming it&#39;s not, I now imagine you&#39;re talking about reinterpreting the layout of C structs and the like for some horrifically beautiful optimisation or low-level trick purpose, which sounds nice but is way beyond my level of understanding or needs.<br><br>I&#39;ll take your word for it that the example with aliasing pointers is something that might actually happen, as it stands it just looks like an unfortunate programmer error, not sure if that was your point (to catch that kind of thing before it happens). <br><div class="gmail_quote"><div dir="ltr">Joe Groff &lt;<a href="mailto:jgroff@apple.com">jgroff@apple.com</a>&gt; schrieb am Mo., 9. Mai 2016 um 22:48:<br></div><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><br>
&gt; On May 9, 2016, at 1:25 PM, Geordie Jay &lt;<a href="mailto:geojay@gmail.com" target="_blank">geojay@gmail.com</a>&gt; wrote:<br>
&gt;<br>
&gt; So what&#39;s in it for us as Swift devs?<br>
&gt;<br>
&gt; It may be technically undefined behaviour (by that I think you mean there&#39;s no real knowing what could happen), but it seems to be rampant throughout pretty much all the C code I&#39;ve come in contact with (I&#39;m less familiar with C++).<br>
<br>
Undefined behavior means that the compiler can optimize as if it couldn&#39;t happen. For example, in this C code:<br>
<br>
        int foo(int *x, float *y) {<br>
                *x = 2;<br>
                *y = 3.0;<br>
                return *x;<br>
        }<br>
<br>
the compiler will likely optimize &#39;foo&#39; to always return 2, since it&#39;s allowed to assume its pointer parameters x and y are different types so don&#39;t alias, If code calls `foo` with aliasing pointers such as `foo(&amp;x, (float*)&amp;x)`, it&#39;ll break.<br>
<br>
&gt; If we lose type information by calling a C API that takes a void pointer, how can we hope to retrieve it in any safe way, other than saying &quot;we assume with good reason and hope to hell that this is what we say it is&quot;.<br>
<br>
This doesn&#39;t change anything in that respect. The aliasing rules in C and Swift refer to the type of value that&#39;s dynamically stored in memory, not the static type of a pointer. It&#39;s legal to cast a pointer from T* to void* and back to T*, and load a T from the resulting pointer, so long as a T value resides in the referenced memory at the time the load occurs.<br>
<br>
&gt; And if we can&#39;t do that, what advantage does this proposal provide over what we already have?<br>
<br>
This API gives you a way to legally perform pointer type punning, when you do want to reinterpret memory as a different type. In C and C++ the only standard way to do so is to `memcpy`.<br>
<br>
-Joe<br>
<br>
&gt; Joe Groff &lt;<a href="mailto:jgroff@apple.com" target="_blank">jgroff@apple.com</a>&gt; schrieb am Mo., 9. Mai 2016 um 22:16:<br>
&gt;<br>
&gt; &gt; On May 9, 2016, at 12:38 PM, Geordie Jay via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt; &gt;<br>
&gt; &gt; I read this proposal and I&#39;m a bit unsure what its purpose would be:<br>
&gt; &gt;<br>
&gt; &gt; Basically you want to prevent UnsafePointer&lt;XYZ&gt;(UnsafePointer&lt;Void&gt;) conversions and/or vice-versa? And you&#39;d achieve this by replacing UnsafePointer&lt;Void&gt; with UnsafeBytePointer that has no bound pointer type?<br>
&gt; &gt;<br>
&gt; &gt; In one sense the change seems fine to me, but as someone who uses a lot of C APIs and a lot of CoreAudio/CoreMIDI in Swift already I can&#39;t really see what benefit it&#39;d bring. Presumably we&#39;d still want an option of converting UnsafeBytePointer to UnsafePointer&lt;SomeActualType&gt; for things like C function pointer callback &quot;context&quot;/&quot;userInfo&quot; uses, so it&#39;s not like we&#39;d be preventing programmer error in that way.<br>
&gt; &gt;<br>
&gt; &gt; Call me conservative but to me the current system seems to work as well as it can. If anything it&#39;s already enough boilerplate going through hoops converting an UnsafeMutablePointer&lt;Void&gt; into a [Float] even when I know and the C API knows perfectly well what it actually contains... Would happily be convinced otherwise about this proposal though, I&#39;m pretty new at all this.<br>
&gt; &gt;<br>
&gt; &gt; Geordie<br>
&gt;<br>
&gt; &gt; On May 9, 2016, at 12:57 PM, Guillaume Lessard via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:<br>
&gt; &gt;<br>
&gt; &gt; I’m sympathetic to the elimination of UnsafePointer&lt;Void&gt; as general shorthand for an arbitrary pointer, but I lose the plot of this very long proposal. It seems to me that this increases API surface, yet everything I could do before, I could still do; it just involves more typing. What exactly does this make better?<br>
&gt; &gt;<br>
&gt; &gt; Cheers,<br>
&gt; &gt; Guillaume Lessard<br>
&gt;<br>
&gt; Andy, I think it&#39;s worth clarifying the primary purpose of this proposal. Our main goal here is to provide a legal means for &quot;type-punning&quot; memory access. Like C and C++, it&#39;s technically undefined behavior in Swift to cast an UnsafePointer&lt;T&gt; to an UnsafePointer&lt;U&gt; of a different type and load a value out of memory that&#39;s of a different type from what was stored there. We don&#39;t take much advantage of this yet in Swift&#39;s optimizer, since we don&#39;t have good alternative API. UnsafeBytePointer seeks to fill this gap by providing a type that can safely do type-punned loads and stores.<br>
&gt;<br>
&gt; -Joe<br>
<br>
</blockquote></div>