<div dir="ltr"><br><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Sep 7, 2017 at 1:39 PM, Jordan Rose <span dir="ltr">&lt;<a href="mailto:jordan_rose@apple.com" target="_blank">jordan_rose@apple.com</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div style="word-wrap:break-word;line-break:after-white-space"><br><div><span class=""><br><blockquote type="cite"><div>On Sep 7, 2017, at 10:31, Andrew Trick via swift-evolution &lt;<a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a>&gt; wrote:</div><br class="m_1247544992164468227Apple-interchange-newline"><div><div style="word-wrap:break-word"><br><div><blockquote type="cite"><div>On Sep 7, 2017, at 8:06 AM, Taylor Swift &lt;<a href="mailto:kelvin13ma@gmail.com" target="_blank">kelvin13ma@gmail.com</a>&gt; wrote:</div><br class="m_1247544992164468227Apple-interchange-newline"><div><div dir="ltr">I don’t see any source for this claim in the <a href="https://developer.apple.com/documentation/swift/unsafemutablepointer/2295090-deallocate" target="_blank">documentation</a>, or the <a href="https://github.com/apple/swift/blob/master/stdlib/public/core/UnsafePointer.swift.gyb#L432" target="_blank">source code</a>. As far as I can tell the expected behavior is that partial deallocation “should” work.<br></div><div class="gmail_extra"><br><div class="gmail_quote">On Thu, Sep 7, 2017 at 8:59 AM, Joe Groff <span dir="ltr">&lt;<a href="mailto:jgroff@apple.com" target="_blank">jgroff@apple.com</a>&gt;</span> wrote:<blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex"><div class="m_1247544992164468227HOEnZb"><div class="m_1247544992164468227h5">
<br>
</div></div>The segfaulting example is an incorrect usage. The only valid parameters to deallocate(capacity:) are the base address of an allocation, and the original capacity passed into allocate(); it has never been intended to support partial deallocation of allocated blocks. It seems to me like this proposal is based on a misunderstanding of how the API works. The documentation and/or name should be clarified.<br>
<span class="m_1247544992164468227HOEnZb"><font color="#888888"><br>
-Joe<br>
</font></span><div class="m_1247544992164468227HOEnZb"><div class="m_1247544992164468227h5"><br>
&gt; “fixing” this bug will cause programs that once operated on previously valid assumptions of “free()” semantics to behave differently, without any warnings ever being generated. Conversely incorrect code will suddenly become “correct” though this is less of a problem.<br>
&gt;<br>
&gt;&gt; A sized implementation may fail more obviously when you violate the contract in the future. Not having sized deallocation is a known deficiency of the C model we&#39;ve been fairly diligent about avoiding in Swift&#39;s allocation interfaces, and it would be extremely unfortunate for us to backpedal from it.<br>
&gt;&gt;<br>
&gt;&gt; -Joe<br></div></div></blockquote></div></div></div></blockquote><br></div><div><div>This discussion needs to be grounded by reiterating role of the API. UnsafePointer specifies the memory model without extraneous functionality or convenience.</div><div><br></div><div>The UnsafePointer.deallocate() API *is not*:</div><div><br></div><div>- a common, expected, or encouraged way to deallocate</div><div><br></div><div>- the simplest, safest, or most convenient way to deallocate</div><div><br></div><div>- necessarilly the most optimal path for deallocation</div></div></div></div></blockquote><div><br></div></span><div>I don&#39;t think this is correct. UnsafePointer.deallocate is the API you must use to deallocate memory allocated with UnsafePointer.allocate. <i>My</i> question is whether it&#39;s acceptable to break all the people who <i>didn&#39;t</i> know this and are using it to deallocate memory allocated with malloc or new on Apple platforms. It sounds like the answer to that is &quot;no, we want to be malloc-compatible&quot;, and therefore the &#39;capacity&#39; parameter isn&#39;t currently serving a purpose today. We will <i>always</i> need to check if the memory is actually in the Swift pool before even believing the &#39;capacity&#39; parameter.</div><div><br></div><div>(It is definitely true that the <i>intent</i> was for this to be the allocation capacity, and I&#39;m surprised you interpreted it as supporting partial deallocation. But we probably can&#39;t fix that at this point.)</div><span class="HOEnZb"><font color="#888888"><div><br></div><div>Jordan</div><br></font></span><blockquote type="cite"><div><span class=""><div style="word-wrap:break-word"><div><div><br></div><div>There is only one decision that needs to be made here. Does the Swift runtime track allocation size for manually allocated blocks? I think the answer should be &quot;yes&quot;, or at least haven&#39;t heard a strong argument against it. UnsafePointer.deallocate() needs to direcly reflect that model by making `allocatedCapacity` an *optional* argument.</div><div><br></div><div>Discussion about whether this API is unsafe, misleading, suboptimal or incorrectly implemented are secondary. Those are all deficiencies in the current documentation, current implementation, and availability of higher-level APIs.</div><div><br></div><div>Note that yesterday I argued that an optional argument wasn&#39;t worth the potential for confusion. That&#39;s true from a practical perspective, but I had lost sight of need to clearly specify the memory model. We want the Swift runtime to both have the functionality for tracking block size and also allow user code to track it more efficiently. Both those intentions need to be reflected in this API.</div><div><br></div></div><div>-Andy</div></div></span><span class="">______________________________<wbr>_________________<br>swift-evolution mailing list<br><a href="mailto:swift-evolution@swift.org" target="_blank">swift-evolution@swift.org</a><br><a href="https://lists.swift.org/mailman/listinfo/swift-evolution" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-<wbr>evolution</a><br></span></div></blockquote></div><br></div></blockquote><div><br></div><div>I mean I would have thought it’s reasonable to expect that if the method asks for a capacity parameter, it will actually use it <br></div></div><br></div></div>