<html><head><meta http-equiv="Content-Type" content="text/html charset=us-ascii"></head><body style="word-wrap: break-word; -webkit-nbsp-mode: space; -webkit-line-break: after-white-space;" class=""><div class=""><b class="">Background</b></div><div class=""><b class="">==========</b></div><div class=""><br class=""></div>I have recently been thinking about clang attributes and how we can take advantage of the work other people have done in terms of putting attributes in their headers especially in terms of ARC.<div class=""><br class=""></div><div class="">The two most pervasive such attributes are the const/pure attributes. Trivially the const attribute (since it can not read global memory) can not read or write reference counts. But what about pure? For those who are unfamiliar pure in "c" means that a function's value is only dependent on its arguments and reading global memory. Being able to only read global memory is an interesting property from the ARC perspective since there is only one ARC function that reads a reference count that is exported from the runtime, the uniqueness check. All other ways to read/write a reference count are either restricted to pure swift code or if they are allowed in C++ code write to reference counts. If we were able to say that it is undefined behavior to invoke isUniquelyReferenced from non-swift runtime functions, we immediately could get nice speed boosts when using imported c code that is pure without any further work on the maintainers part.</div><div class=""><br class=""></div><div class=""><b class="">Proposal</b></div><div class=""><b class="">=======</b></div><div class=""><b class=""><br class=""></b></div><div class="">State that is is undefined behavior to reference isUniquelyReferenced in a non-swift function in 3rd party libraries.</div><div class=""><br class=""></div><div class="">Thoughts?</div><div class="">Michael</div></body></html>