<div dir="ltr">doesn’t the compiler like to optimize the loop out of the benchmarking code? i’ve always had a hard time writing benchmarks in Swift<br><div class="gmail_extra"><br><div class="gmail_quote">On Fri, Nov 3, 2017 at 7:10 PM, Ryan Walklin via swift-users <span dir="ltr">&lt;<a href="mailto:swift-users@swift.org" target="_blank">swift-users@swift.org</a>&gt;</span> wrote:<br><blockquote class="gmail_quote" style="margin:0 0 0 .8ex;border-left:1px #ccc solid;padding-left:1ex">Why not just profile it? Set up a loop of 100,000 or so with each method and time it.<br>
<br>
Ryan<br>
<div class="HOEnZb"><div class="h5"><br>
&gt; On 4 Nov 2017, at 6:42 am, Jens Alfke via swift-users &lt;<a href="mailto:swift-users@swift.org">swift-users@swift.org</a>&gt; wrote:<br>
&gt;<br>
&gt; I’m working with a C API that represents strings as UTF-8 data tagged with a length but **without a trailing NUL byte**. In other words, its string type is basically a tuple {const char*, size_t}. I need to convert this representation to and from Swift 4 strings.<br>
&gt;<br>
&gt; This needs to be efficient, as these calls will occur in some areas of my project that are known to be performance-critical. (Equivalent conversions in my Obj-C code have already shown up as hot-spots and been carefully optimized.)<br>
&gt;<br>
&gt; For String-to-UTF-8, I’m using String.withCString():<br>
&gt;    _ = str.withCString { bytes in c_function(bytes, strlen(bytes)) }<br>
&gt; An alternative is<br>
&gt;    let bytes = [UInt8](str.utf8)<br>
&gt;    c_function(&amp;bytes, bytes.count)<br>
&gt; Any idea which of these is more optimal? The former has to call strlen, but I suspect the latter may incur more heap allocation.<br>
&gt;<br>
&gt; For UTF-8-to-String I use this, where `stringPointer` is an UnsafeRawPointer and stringLen is an Int:<br>
&gt;    let data = Data(bytes: stringPointer, count: stringLen)<br>
&gt;    return String(data: data, encoding: String.Encoding.utf8)<br>
&gt; I’m unhappy about this because it incurs both heap allocation and copying the string bytes. But Data doesn’t seem to have the “noCopy” options that NSData does. Any way to pass the bytes directly to String without an intermediate copy?<br>
&gt;<br>
&gt; —Jens<br>
&gt;<br>
&gt; PS: I’m aware this is an FAQ, but I’ve already put in time searching. Most of the hits are obsolete because the damn String API keeps changing, or else they assume NUL-terminated C strings; and the remainder don’t consider performance.<br>
&gt; ______________________________<wbr>_________________<br>
&gt; swift-users mailing list<br>
&gt; <a href="mailto:swift-users@swift.org">swift-users@swift.org</a><br>
&gt; <a href="https://lists.swift.org/mailman/listinfo/swift-users" rel="noreferrer" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-users</a><br>
<br>
______________________________<wbr>_________________<br>
swift-users mailing list<br>
<a href="mailto:swift-users@swift.org">swift-users@swift.org</a><br>
<a href="https://lists.swift.org/mailman/listinfo/swift-users" rel="noreferrer" target="_blank">https://lists.swift.org/<wbr>mailman/listinfo/swift-users</a><br>
</div></div></blockquote></div><br></div></div>