<html><head><meta http-equiv="Content-Type" content="text/html charset=utf-8"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><br class=""><div><blockquote type="cite" class=""><div class="">On Sep 1, 2016, at 13:48, Andrew Trick via swift-users &lt;<a href="mailto:swift-users@swift.org" class="">swift-users@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><meta http-equiv="Content-Type" content="text/html charset=utf-8" class=""><div style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><br class=""><div class=""><blockquote type="cite" class=""><div class="">On Sep 1, 2016, at 12:37 PM, Lou Zell via swift-users &lt;<a href="mailto:swift-users@swift.org" class="">swift-users@swift.org</a>&gt; wrote:</div><br class="Apple-interchange-newline"><div class=""><div dir="ltr" class=""><blockquote class="gmail_quote" style="margin:0px 0px 0px 0.8ex;border-left:1px solid rgb(204,204,204);padding-left:1ex"><span style="font-size:12.8px" class="">As to your real question, what’s your high-level goal?&nbsp; Swift doesn’t really do pointers to functions [1] but it does provide lots of other excellent ‘treat code as data’ features.&nbsp; If you can explain more about your goal, perhaps we can direct you to a better path.</span><br class=""></blockquote>​<div class="">Curiosity got the better of me on this one - there's no higher level goal other than improved understanding.&nbsp; I was playing around with function currying in the repl and that's what lead me to those experiments. &nbsp;</div><div class=""><br class=""></div><div class="">The article, and the preceding one in the series, has plenty for me to work with.&nbsp; Thank you!</div></div></div></blockquote><br class=""></div><div class="">That’s an awesome article, but I don’t think you need to understand any of it! I’m not an expert in this either, but here’s what I can see from your code...</div><div class=""><br class=""></div><div class="">It looks like you’re trying to capture the address of a function that was JIT’d for the purpose of evaluating a statement in the repl. That address might not be valid in the next statement.</div><div class=""><br class=""></div><div class="">Also, in the first case the UnsafePointer points to local memory that holds the function value. In the second case, you’re trying to load a function value from the address of the function body. So a level of indirection is missing.</div><div class=""><br class=""></div><div class="">You can’t take an address to a function in Swift. You can assign a variable to the function, as you did in the first case:</div><div class=""><br class=""></div><div class="">var x = doNothing</div><div class=""><br class=""></div><div class="">And view the address of that variable as an argument, only for the duration of the call, as you did in the first case:</div><div class=""><br class=""></div><div class="">call(&amp;x)</div></div></div></blockquote><br class=""></div><div>I feel like there’s still one last piece missing here, which is that in Swft a "function-typed value” is not the same as a “function pointer” in C. Because a function value might have come from a closure, it might include captured state…so the representation of a closure is not the same as a representation of a plain function.</div><div><br class=""></div><div>Because of <i class="">that</i>, the address you’re seeing isn’t the address of the function in memory; it’s the address of the temporary allocation used to represent “this global function and no associated state”. That’s why you can’t just form a pointer with that bit-pattern and expect it to work.</div><div><br class=""></div><div>If you <i class="">really</i>&nbsp;need something compatible with a C function, you can use the type '@convention(c) () -&gt; Void’ (or whatever). Note the lack of UnsafePointer here—the reference-ness is baked in in Swift. Even then, though, you can’t rely on the function having the same address every time you run the program (at least on macOS), because of address space randomization—the offset at which your code is loaded will be different on each run. There shouldn’t be any need to do this anyway.</div><div><br class=""></div><div>(One place we are still weak is in converting between C function references and UnsafeRawPointer—there’s no dedicated API to do this. I’m not sure we have a recommendation in the rare cases when this is necessary. Andy?)</div><div><br class=""></div><div>Hope you’ve gotten some useful information between the three of us. :-)</div><div>Jordan</div><br class=""></body></html>